mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
37 lines
1.0 KiB
Dart
37 lines
1.0 KiB
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";
|
|
}
|
|
|
|
/// User table contract
|
|
abstract class UserTableContract {
|
|
static const TABLE_NAME = "users";
|
|
static const C_ID = BaseTableContract.C_ID;
|
|
static const C_FIRST_NAME = "first_name";
|
|
static const C_LAST_NAME = "last_name";
|
|
static const C_VISIBILITY = "visibility";
|
|
static const C_VIRTUAL_DIRECTORY = "virtual_directory";
|
|
static const C_ACCOUNT_IMAGE_URL = "account_image_url";
|
|
static const C_CUSTOM_EMOJIES = "custom_emojies";
|
|
}
|
|
|
|
/// 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";
|
|
}
|