opensim-development – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 :VERSION 1 # --------------------------
2  
3 BEGIN Transaction;
4  
5 Create Sequence im_offiline_id increment by 1 start with 1;
6  
7 CREATE TABLE im_offline (
8 "ID" integer PRIMARY KEY NOT NULL DEFAULT nextval('im_offiline_id') ,
9 "PrincipalID" char(36) NOT NULL default '',
10 "Message" text NOT NULL,
11 "TMStamp" timestamp NOT NULL default now()
12 );
13  
14 COMMIT;
15  
16 :VERSION 2 # --------------------------
17  
18 BEGIN;
19  
20 /*
21 INSERT INTO `im_offline` SELECT * from `diva_im_offline`;
22 DROP TABLE `diva_im_offline`;
23 DELETE FROM `migrations` WHERE name='diva_im_Store';
24 */
25  
26 COMMIT;