From 855d0ecfda212ef36f35fff63e93dc8c6afd1126 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 16 Dec 2005 06:48:45 +0100 Subject: schema: wrap table creation in transaction block --- schema/ttrss_schema_mysql.sql | 4 +++- schema/ttrss_schema_pgsql.sql | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'schema') diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index db0e1b846..438d46054 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -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; diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 1b5b8c123..dcb996593 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -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; -- cgit v1.2.3