1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/helpers/database/database_contract.dart

25 lines
620 B
Dart

/// Database contract
///
/// @author Pierre HUBERT
/// Main information
class DatabaseContract {
static const DATABASE_VERSION = 2;
static const DATABASE_FILE_NAME = "database.sqlite";
}
/// Base table contract
abstract class BaseTableContract {
static const C_ID = "id";
}
/// Friends table contract
abstract class FriendsListTableContract {
static const TABLE_NAME = "friends";
static const C_ID = BaseTableContract.C_ID;
static const C_ACCEPTED = "accepted";
static const C_LAST_ACTIVE = "last_active";
static const C_FOLLOWING = "following";
static const C_CAN_POST_TEXTS = "can_post_texts";
}