added my passes and more chnages

This commit is contained in:
mystery012728
2026-02-13 15:27:14 +05:30
parent 5d08e07de3
commit b08e2699e9
85 changed files with 5036 additions and 1453 deletions

View File

@@ -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,