mirror of
https://github.com/immich-app/immich.git
synced 2025-12-27 21:23:57 -08:00
16 lines
323 B
Dart
16 lines
323 B
Dart
import 'package:drift/drift.dart';
|
|
|
|
class Store extends Table {
|
|
const Store();
|
|
|
|
@override
|
|
String get tableName => 'store';
|
|
|
|
IntColumn get id => integer()();
|
|
IntColumn get intValue => integer().nullable()();
|
|
TextColumn get stringValue => text().nullable()();
|
|
|
|
@override
|
|
Set<Column> get primaryKey => {id};
|
|
}
|