]> git.wh0rd.org - tt-rss.git/commitdiff
themes schema
authorAndrew Dolgov <fox@bah.spb.su>
Fri, 25 Nov 2005 12:37:42 +0000 (13:37 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Fri, 25 Nov 2005 12:37:42 +0000 (13:37 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index b506a5d1c587bd4fb5c3433d9fd283747ae4f85c..edd91e1342a7e7c199687b7e69c8d5e46a89b9ce 100644 (file)
@@ -13,12 +13,20 @@ drop table if exists ttrss_entries;
 drop table if exists ttrss_feeds;
 drop table if exists ttrss_feed_categories;
 drop table if exists ttrss_users;
+drop table if exists ttrss_themes;
+
+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;
 
 create table ttrss_users (id integer primary key not null auto_increment,
        login varchar(120) not null unique,
        pwd_hash varchar(250) not null,
        last_login datetime default null,
-       access_level integer not null default 0) TYPE=InnoDB;
+       access_level integer not null default 0,
+       theme_id integer default null,
+       index (theme_id),
+       foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB;
 
 insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
 
index d761576c1eaf917e38a7879f34971f7ef7479bba..30ad8cb549d6da7178261cae07c4c9e53da75dde 100644 (file)
@@ -13,12 +13,18 @@ drop table ttrss_entries;
 drop table ttrss_feeds;
 drop table ttrss_feed_categories;
 drop table ttrss_users;
+drop table ttrss_themes;
+
+create table ttrss_themes(id serial not null primary key,
+       theme_name varchar(200) not null,
+       theme_path varchar(200) not null);
 
 create table ttrss_users (id serial not null primary key,
        login varchar(120) not null unique,
        pwd_hash varchar(250) not null,
        last_login timestamp default null,
-       access_level integer not null default 0);
+       access_level integer not null default 0
+       theme_id integer references ttrss_themes(id) default null);
 
 insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);