Changeset 12005
- Timestamp:
- Feb 22, 2007, 3:10:57 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 6 edited
-
Nebulous-Server/Build.PL (modified) (1 diff)
-
Nebulous-Server/MANIFEST (modified) (1 diff)
-
Nebulous-Server/bin/nebdiskd (added)
-
Nebulous-Server/lib/Nebulous/Server/SQL.pm (modified) (2 diffs)
-
Nebulous/Build.PL (modified) (1 diff)
-
Nebulous/MANIFEST (modified) (1 diff)
-
Nebulous/bin/nebdiskd (added)
-
Nebulous/lib/Nebulous/Server/SQL.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous-Server/Build.PL
r10635 r12005 100 100 bin/neb-initdb 101 101 bin/neb-addvol 102 bin/nebdiskd 102 103 )], 103 104 )->create_build_script; -
trunk/Nebulous-Server/MANIFEST
r11563 r12005 10 10 bin/neb-addvol 11 11 bin/neb-initdb 12 bin/nebdiskd 12 13 docs/c_api.h 13 14 docs/database_setup.txt -
trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm
r10576 r12005 1 1 # Copyright (c) 2004 Joshua Hoblitt 2 2 # 3 # $Id: SQL.pm,v 1.2 1 2006-12-08 20:59:59jhoblitt Exp $3 # $Id: SQL.pm,v 1.22 2007-02-23 01:10:57 jhoblitt Exp $ 4 4 5 5 package Nebulous::Server::SQL; … … 221 221 vol_id INT NOT NULL AUTO_INCREMENT, 222 222 name VARCHAR(255) UNIQUE NOT NULL, 223 uriVARCHAR(255) NOT NULL,223 mountpoint VARCHAR(255) NOT NULL, 224 224 PRIMARY KEY(vol_id), 225 225 KEY(name(16)) 226 ) ENGINE=innodb; 227 228 CREATE TABLE mount ( 229 mountpoint VARCHAR(255) NOT NULL, 230 total BIGINT NOT NULL, 231 used BIGINT NOT NULL, 232 PRIMARY KEY(mountpoint) 226 233 ) ENGINE=innodb; 227 234 -
trunk/Nebulous/Build.PL
r10635 r12005 100 100 bin/neb-initdb 101 101 bin/neb-addvol 102 bin/nebdiskd 102 103 )], 103 104 )->create_build_script; -
trunk/Nebulous/MANIFEST
r11563 r12005 10 10 bin/neb-addvol 11 11 bin/neb-initdb 12 bin/nebdiskd 12 13 docs/c_api.h 13 14 docs/database_setup.txt -
trunk/Nebulous/lib/Nebulous/Server/SQL.pm
r10576 r12005 1 1 # Copyright (c) 2004 Joshua Hoblitt 2 2 # 3 # $Id: SQL.pm,v 1.2 1 2006-12-08 20:59:59jhoblitt Exp $3 # $Id: SQL.pm,v 1.22 2007-02-23 01:10:57 jhoblitt Exp $ 4 4 5 5 package Nebulous::Server::SQL; … … 221 221 vol_id INT NOT NULL AUTO_INCREMENT, 222 222 name VARCHAR(255) UNIQUE NOT NULL, 223 uriVARCHAR(255) NOT NULL,223 mountpoint VARCHAR(255) NOT NULL, 224 224 PRIMARY KEY(vol_id), 225 225 KEY(name(16)) 226 ) ENGINE=innodb; 227 228 CREATE TABLE mount ( 229 mountpoint VARCHAR(255) NOT NULL, 230 total BIGINT NOT NULL, 231 used BIGINT NOT NULL, 232 PRIMARY KEY(mountpoint) 226 233 ) ENGINE=innodb; 227 234
Note:
See TracChangeset
for help on using the changeset viewer.
