mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Deleting older create_tables - these are in setup/ now, and will be moved into the API soon
This commit is contained in:
parent
7951cf92f2
commit
fd597a18a4
@ -1,19 +0,0 @@
|
||||
CREATE TABLE phpgw_vfs (
|
||||
file_id int(11) DEFAULT '0' NOT NULL auto_increment,
|
||||
owner_id int(11) DEFAULT '0' NOT NULL,
|
||||
createdby_id int(11),
|
||||
modifiedby_id int(11),
|
||||
created date DEFAULT '0000-00-00' NOT NULL,
|
||||
modified date,
|
||||
size int(14),
|
||||
mime_type varchar(150),
|
||||
deleteable char(1) DEFAULT 'Y',
|
||||
comment text,
|
||||
app varchar(25),
|
||||
directory text,
|
||||
name text NOT NULL,
|
||||
PRIMARY KEY (file_id)
|
||||
);
|
||||
|
||||
INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','');
|
||||
INSERT INTO phpgw_vfs VALUES (2,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','home');
|
@ -1,23 +0,0 @@
|
||||
BEGIN WORK;
|
||||
|
||||
CREATE TABLE phpgw_vfs (
|
||||
file_id int(11) DEFAULT '0' NOT NULL serial,
|
||||
owner_id int(11) DEFAULT '0' NOT NULL,
|
||||
createdby_id int(11),
|
||||
modifiedby_id int(11),
|
||||
created date DEFAULT '0000-00-00' NOT NULL,
|
||||
modified date,
|
||||
size int(14),
|
||||
mime_type varchar(150),
|
||||
deleteable char(1) DEFAULT 'Y',
|
||||
comment text,
|
||||
app varchar(25),
|
||||
directory text,
|
||||
name text NOT NULL,
|
||||
PRIMARY KEY (file_id)
|
||||
);
|
||||
|
||||
INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','');
|
||||
INSERT INTO phpgw_vfs VALUES (2,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','home');
|
||||
|
||||
COMMIT;
|
Loading…
Reference in New Issue
Block a user