You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/fixtures/fresh_db.sql
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,6 @@ CREATE TABLE IF NOT EXISTS "auth_group" ("id" integer NOT NULL PRIMARY KEY AUTOI
10
10
CREATETABLEIF NOT EXISTS "auth_user" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "password"varchar(128) NOT NULL, "last_login" datetime NULL, "is_superuser" bool NOT NULL, "username"varchar(150) NOT NULL UNIQUE, "last_name"varchar(150) NOT NULL, "email"varchar(254) NOT NULL, "is_staff" bool NOT NULL, "is_active" bool NOT NULL, "date_joined" datetime NOT NULL, "first_name"varchar(150) NOT NULL);
11
11
CREATETABLEIF NOT EXISTS "access_teamusers" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "manager" bool NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "team_id"integerNOT NULLREFERENCES"access_team" ("group_ptr_id") DEFERRABLE INITIALLY DEFERRED, "user_id"integerNOT NULLREFERENCES"auth_user" ("id") DEFERRABLE INITIALLY DEFERRED);
CREATETABLEIF NOT EXISTS "django_session" ("session_key"varchar(40) NOT NULLPRIMARY KEY, "session_data"textNOT NULL, "expire_date" datetime NOT NULL);
221
223
CREATETABLEIF NOT EXISTS "social_auth_association" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "server_url"varchar(255) NOT NULL, "handle"varchar(255) NOT NULL, "secret"varchar(255) NOT NULL, "issued"integerNOT NULL, "lifetime"integerNOT NULL, "assoc_type"varchar(64) NOT NULL);
222
224
CREATETABLEIF NOT EXISTS "social_auth_code" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "email"varchar(254) NOT NULL, "code"varchar(32) NOT NULL, "verified" bool NOT NULL, "timestamp" datetime NOT NULL);
223
225
CREATETABLEIF NOT EXISTS "social_auth_nonce" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "server_url"varchar(255) NOT NULL, "timestamp"integerNOT NULL, "salt"varchar(65) NOT NULL);
224
226
CREATETABLEIF NOT EXISTS "social_auth_usersocialauth" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "provider"varchar(32) NOT NULL, "uid"varchar(255) NOT NULL, "user_id"integerNOT NULLREFERENCES"auth_user" ("id") DEFERRABLE INITIALLY DEFERRED, "created" datetime NOT NULL, "modified" datetime NOT NULL, "extra_data"textNOT NULLCHECK ((JSON_VALID("extra_data") OR"extra_data" IS NULL)));
225
227
CREATETABLEIF NOT EXISTS "social_auth_partial" ("id"integerNOT NULLPRIMARY KEY AUTOINCREMENT, "token"varchar(32) NOT NULL, "next_step"smallint unsigned NOT NULLCHECK ("next_step">=0), "backend"varchar(32) NOT NULL, "timestamp" datetime NOT NULL, "data"textNOT NULLCHECK ((JSON_VALID("data") OR"data" IS NULL)));
226
228
DELETEFROM sqlite_sequence;
227
-
INSERT INTO sqlite_sequence VALUES('django_migrations',213);
228
-
INSERT INTO sqlite_sequence VALUES('django_content_type',203);
229
-
INSERT INTO sqlite_sequence VALUES('auth_permission',857);
229
+
INSERT INTO sqlite_sequence VALUES('django_migrations',214);
230
+
INSERT INTO sqlite_sequence VALUES('django_content_type',205);
231
+
INSERT INTO sqlite_sequence VALUES('auth_permission',865);
230
232
INSERT INTO sqlite_sequence VALUES('auth_group',0);
231
233
INSERT INTO sqlite_sequence VALUES('auth_user',0);
232
-
INSERT INTO sqlite_sequence VALUES('project_management_projecttype',0);
233
234
INSERT INTO sqlite_sequence VALUES('core_notes',0);
234
235
INSERT INTO sqlite_sequence VALUES('core_relatedtickets',0);
235
236
INSERT INTO sqlite_sequence VALUES('core_ticket',0);
236
237
INSERT INTO sqlite_sequence VALUES('core_ticketcomment',0);
237
238
INSERT INTO sqlite_sequence VALUES('core_ticketlinkeditem',0);
238
239
INSERT INTO sqlite_sequence VALUES('settings_externallink',0);
239
-
INSERT INTO sqlite_sequence VALUES('settings_usersettings',0);
240
240
INSERT INTO sqlite_sequence VALUES('settings_appsettings',1);
241
+
INSERT INTO sqlite_sequence VALUES('settings_usersettings',0);
241
242
INSERT INTO sqlite_sequence VALUES('access_entity',0);
242
243
INSERT INTO sqlite_sequence VALUES('core_ticketbase',0);
243
244
INSERT INTO sqlite_sequence VALUES('core_ticketcommentbase',0);
@@ -281,6 +282,7 @@ INSERT INTO sqlite_sequence VALUES('itim_service',0);
281
282
INSERT INTO sqlite_sequence VALUES('project_management_project',0);
282
283
INSERT INTO sqlite_sequence VALUES('project_management_projectmilestone',0);
283
284
INSERT INTO sqlite_sequence VALUES('project_management_projectstate',0);
285
+
INSERT INTO sqlite_sequence VALUES('project_management_projecttype',0);
284
286
INSERT INTO sqlite_sequence VALUES('social_auth_association',0);
285
287
INSERT INTO sqlite_sequence VALUES('social_auth_code',0);
286
288
INSERT INTO sqlite_sequence VALUES('social_auth_nonce',0);
0 commit comments