added my passes and more chnages
This commit is contained in:
@@ -22,14 +22,6 @@ class LocalDatabase {
|
||||
path,
|
||||
version: 1,
|
||||
onCreate: (db, version) async {
|
||||
/// CITY TABLE
|
||||
await db.execute('''
|
||||
CREATE TABLE selected_city (
|
||||
id INTEGER PRIMARY KEY,
|
||||
city_id INTEGER
|
||||
)
|
||||
''');
|
||||
|
||||
/// ONBOARDING TABLE
|
||||
await db.execute('''
|
||||
CREATE TABLE onboarding_state (
|
||||
@@ -90,7 +82,8 @@ class LocalDatabase {
|
||||
description TEXT
|
||||
)
|
||||
''');
|
||||
/// CITY TABLE
|
||||
|
||||
/// CITY TABLE (with city_logo field)
|
||||
await db.execute('''
|
||||
CREATE TABLE selected_city (
|
||||
id INTEGER PRIMARY KEY,
|
||||
|
||||
Reference in New Issue
Block a user