Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
ae515beb
Commit
ae515beb
authored
May 28, 2000
by
Chris McDonough
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing Interbase storage turds from trunk.
parent
f9d542d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
36 deletions
+0
-36
src/ZODB/DDL/InterbaseStorage.sql
src/ZODB/DDL/InterbaseStorage.sql
+0
-36
No files found.
src/ZODB/DDL/InterbaseStorage.sql
deleted
100644 → 0
View file @
f9d542d6
/* Replace the CREATE DATABASE path argument with
the path and file you want to use for your
InterbaseStorage
$Id: InterbaseStorage.sql,v 1.1 2000/05/27 08:09:58 chrism Exp $
*/
CREATE
DATABASE
'/home/chrism/zope_storage2.gdb'
;
create
table
zodb_data
(
z_oid
char
(
12
)
not
null
,
z_serial
char
(
12
)
not
null
,
z_prev
char
(
12
),
z_status
char
(
1
),
z_data
blob
,
z_datalen
integer
,
z_dataserial
char
(
12
),
primary
key
(
z_oid
,
z_serial
)
);
create
table
zodb_trans
(
z_serial
char
(
12
)
not
null
primary
key
,
z_status
char
(
1
),
z_username
varchar
(
255
),
z_description
varchar
(
255
),
z_ext
varchar
(
255
)
);
create
table
zodb_version
(
z_version
varchar
(
255
),
z_oid
char
(
12
)
not
null
,
z_serial
char
(
12
)
not
null
,
z_status
char
(
1
),
z_nvserial
char
(
12
),
primary
key
(
z_oid
,
z_serial
)
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment