add timestamps for syncing apps
This commit is contained in:
@@ -107,6 +107,8 @@ CREATE TABLE "app" (
|
||||
"app_price" text NOT NULL DEFAULT '',
|
||||
"app_page" text NOT NULL DEFAULT '',
|
||||
"app_requires" text NOT NULL DEFAULT '',
|
||||
"app_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||
"app_edited" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
create index "app_id" on app ("app_id");
|
||||
@@ -116,6 +118,8 @@ create index "app_photo" on app ("app_photo");
|
||||
create index "app_version" on app ("app_version");
|
||||
create index "app_channel" on app ("app_channel");
|
||||
create index "app_price" on app ("app_price");
|
||||
create index "app_created" on app ("app_created");
|
||||
create index "app_edited" on app ("app_edited");
|
||||
CREATE TABLE "attach" (
|
||||
"id" serial NOT NULL,
|
||||
"aid" bigint NOT NULL DEFAULT '0',
|
||||
|
Reference in New Issue
Block a user