]> git.wh0rd.org - tt-rss.git/commitdiff
schema: wrap table creation in transaction block
authorAndrew Dolgov <fox@madoka.spb.ru>
Fri, 16 Dec 2005 05:48:45 +0000 (06:48 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Fri, 16 Dec 2005 05:48:45 +0000 (06:48 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index db0e1b846b7b78564846e063f4026ef4847f87f6..438d46054a65cb1b261109a423ff8b22c0667d08 100644 (file)
@@ -16,6 +16,8 @@ drop table if exists ttrss_feed_categories;
 drop table if exists ttrss_users;
 drop table if exists ttrss_themes;
 
+begin;
+
 create table ttrss_themes(id integer not null primary key auto_increment,
        theme_name varchar(200) not null,
        theme_path varchar(200) not null) TYPE=InnoDB;
@@ -235,4 +237,4 @@ create table ttrss_user_prefs (
        index (pref_name),
        foreign key (pref_name) references ttrss_prefs(pref_name) ON DELETE CASCADE) TYPE=InnoDB;
 
-
+commit;
index 1b5b8c1231e80efb4d71a314fbc973df7d15eb93..dcb996593d7d7806cf24d00f034c2a4aa79e0f51 100644 (file)
@@ -16,6 +16,8 @@ drop table ttrss_feed_categories;
 drop table ttrss_users;
 drop table ttrss_themes;
 
+begin;
+
 create table ttrss_themes(id serial not null primary key,
        theme_name varchar(200) not null,
        theme_path varchar(200) not null);
@@ -214,4 +216,4 @@ create table ttrss_user_prefs (
 create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
 create index ttrss_user_prefs_value_index on ttrss_user_prefs(value);
 
-
+commit;