mirror of https://github.com/AMT-Cheif/drift.git
chore: Run build runner
This commit is contained in:
parent
8161d96323
commit
0176dac2e6
|
@ -42,6 +42,7 @@ class Todos extends i0.Table with i0.TableInfo<Todos, i1.Todo> {
|
|||
String get aliasedName => _alias ?? 'todos';
|
||||
@override
|
||||
String get actualTableName => 'todos';
|
||||
static String get actualTableNameStatic => 'todos';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Todo> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -283,6 +284,7 @@ class Categories extends i0.Table with i0.TableInfo<Categories, i1.Category> {
|
|||
String get aliasedName => _alias ?? 'categories';
|
||||
@override
|
||||
String get actualTableName => 'categories';
|
||||
static String get actualTableNameStatic => 'categories';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Category> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -29,6 +29,7 @@ class $TodoCategoriesTable extends TodoCategories
|
|||
String get aliasedName => _alias ?? 'todo_categories';
|
||||
@override
|
||||
String get actualTableName => 'todo_categories';
|
||||
static String get actualTableNameStatic => 'todo_categories';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TodoCategory> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -228,6 +229,7 @@ class $TodoItemsTable extends TodoItems
|
|||
String get aliasedName => _alias ?? 'todo_items';
|
||||
@override
|
||||
String get actualTableName => 'todo_items';
|
||||
static String get actualTableNameStatic => 'todo_items';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TodoItem> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -21,6 +21,7 @@ class NoIds extends Table with TableInfo<NoIds, NoIdRow> {
|
|||
String get aliasedName => _alias ?? 'no_ids';
|
||||
@override
|
||||
String get actualTableName => 'no_ids';
|
||||
static String get actualTableNameStatic => 'no_ids';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<NoIdRow> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -121,6 +122,7 @@ class WithDefaults extends Table with TableInfo<WithDefaults, WithDefault> {
|
|||
String get aliasedName => _alias ?? 'with_defaults';
|
||||
@override
|
||||
String get actualTableName => 'with_defaults';
|
||||
static String get actualTableNameStatic => 'with_defaults';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<WithDefault> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -317,6 +319,7 @@ class WithConstraints extends Table
|
|||
String get aliasedName => _alias ?? 'with_constraints';
|
||||
@override
|
||||
String get actualTableName => 'with_constraints';
|
||||
static String get actualTableNameStatic => 'with_constraints';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<WithConstraint> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -560,6 +563,7 @@ class ConfigTable extends Table with TableInfo<ConfigTable, Config> {
|
|||
String get aliasedName => _alias ?? 'config';
|
||||
@override
|
||||
String get actualTableName => 'config';
|
||||
static String get actualTableNameStatic => 'config';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Config> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -858,6 +862,7 @@ class Mytable extends Table with TableInfo<Mytable, MytableData> {
|
|||
String get aliasedName => _alias ?? 'mytable';
|
||||
@override
|
||||
String get actualTableName => 'mytable';
|
||||
static String get actualTableNameStatic => 'mytable';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<MytableData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1120,6 +1125,7 @@ class Email extends Table
|
|||
String get aliasedName => _alias ?? 'email';
|
||||
@override
|
||||
String get actualTableName => 'email';
|
||||
static String get actualTableNameStatic => 'email';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<EMail> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1344,6 +1350,7 @@ class WeirdTable extends Table with TableInfo<WeirdTable, WeirdData> {
|
|||
String get aliasedName => _alias ?? 'Expression';
|
||||
@override
|
||||
String get actualTableName => 'Expression';
|
||||
static String get actualTableNameStatic => 'Expression';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<WeirdData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -50,6 +50,7 @@ class $CategoriesTable extends Categories
|
|||
String get aliasedName => _alias ?? 'categories';
|
||||
@override
|
||||
String get actualTableName => 'categories';
|
||||
static String get actualTableNameStatic => 'categories';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Category> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -321,6 +322,7 @@ class $TodosTableTable extends TodosTable
|
|||
String get aliasedName => _alias ?? 'todos';
|
||||
@override
|
||||
String get actualTableName => 'todos';
|
||||
static String get actualTableNameStatic => 'todos';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TodoEntry> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -670,6 +672,7 @@ class $UsersTable extends Users with TableInfo<$UsersTable, User> {
|
|||
String get aliasedName => _alias ?? 'users';
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -938,6 +941,7 @@ class $SharedTodosTable extends SharedTodos
|
|||
String get aliasedName => _alias ?? 'shared_todos';
|
||||
@override
|
||||
String get actualTableName => 'shared_todos';
|
||||
static String get actualTableNameStatic => 'shared_todos';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<SharedTodo> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1142,6 +1146,7 @@ class $TableWithoutPKTable extends TableWithoutPK
|
|||
String get aliasedName => _alias ?? 'table_without_p_k';
|
||||
@override
|
||||
String get actualTableName => 'table_without_p_k';
|
||||
static String get actualTableNameStatic => 'table_without_p_k';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<CustomRowClass> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1323,6 +1328,7 @@ class $PureDefaultsTable extends PureDefaults
|
|||
String get aliasedName => _alias ?? 'pure_defaults';
|
||||
@override
|
||||
String get actualTableName => 'pure_defaults';
|
||||
static String get actualTableNameStatic => 'pure_defaults';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<PureDefault> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -29,6 +29,7 @@ class $_SomeTableTable extends _SomeTable
|
|||
String get aliasedName => _alias ?? 'some_table';
|
||||
@override
|
||||
String get actualTableName => 'some_table';
|
||||
static String get actualTableNameStatic => 'some_table';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<_SomeTableData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -45,6 +45,7 @@ class $UsersTable extends Users with TableInfo<$UsersTable, User> {
|
|||
String get aliasedName => _alias ?? 'users';
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -295,6 +296,7 @@ class Groups extends Table with TableInfo<Groups, Group> {
|
|||
String get aliasedName => _alias ?? 'groups';
|
||||
@override
|
||||
String get actualTableName => 'groups';
|
||||
static String get actualTableNameStatic => 'groups';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Group> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -545,6 +547,7 @@ class Notes extends Table
|
|||
String get aliasedName => _alias ?? 'notes';
|
||||
@override
|
||||
String get actualTableName => 'notes';
|
||||
static String get actualTableNameStatic => 'notes';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Note> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -33,6 +33,7 @@ class Posts extends i0.Table with i0.TableInfo<Posts, i1.Post> {
|
|||
String get aliasedName => _alias ?? 'posts';
|
||||
@override
|
||||
String get actualTableName => 'posts';
|
||||
static String get actualTableNameStatic => 'posts';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Post> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -239,6 +240,7 @@ class Likes extends i0.Table with i0.TableInfo<Likes, i1.Like> {
|
|||
String get aliasedName => _alias ?? 'likes';
|
||||
@override
|
||||
String get actualTableName => 'likes';
|
||||
static String get actualTableNameStatic => 'likes';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Like> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -32,6 +32,7 @@ class SearchInPosts extends i0.Table
|
|||
String get aliasedName => _alias ?? 'search_in_posts';
|
||||
@override
|
||||
String get actualTableName => 'search_in_posts';
|
||||
static String get actualTableNameStatic => 'search_in_posts';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(
|
||||
i0.Insertable<i1.SearchInPost> instance,
|
||||
|
|
|
@ -51,6 +51,7 @@ class Users extends i0.Table with i0.TableInfo<Users, i1.User> {
|
|||
String get aliasedName => _alias ?? 'users';
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -341,6 +342,7 @@ class Follows extends i0.Table with i0.TableInfo<Follows, i1.Follow> {
|
|||
String get aliasedName => _alias ?? 'follows';
|
||||
@override
|
||||
String get actualTableName => 'follows';
|
||||
static String get actualTableNameStatic => 'follows';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Follow> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -26,6 +26,7 @@ class Entries extends Table with TableInfo<Entries, Entrie> {
|
|||
String get aliasedName => _alias ?? 'entries';
|
||||
@override
|
||||
String get actualTableName => 'entries';
|
||||
static String get actualTableNameStatic => 'entries';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Entrie> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -25,6 +25,7 @@ class Users extends Table with TableInfo<Users, User> {
|
|||
String get aliasedName => _alias ?? 'users';
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -25,6 +25,7 @@ class $KeyValuesTable extends KeyValues
|
|||
String get aliasedName => _alias ?? 'key_values';
|
||||
@override
|
||||
String get actualTableName => 'key_values';
|
||||
static String get actualTableNameStatic => 'key_values';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<KeyValue> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -51,6 +51,7 @@ class $UsersTable extends Users with TableInfo<$UsersTable, User> {
|
|||
String get aliasedName => _alias ?? 'users';
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -350,6 +351,7 @@ class $FriendshipsTable extends Friendships
|
|||
String get aliasedName => _alias ?? 'friendships';
|
||||
@override
|
||||
String get actualTableName => 'friendships';
|
||||
static String get actualTableNameStatic => 'friendships';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Friendship> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -23,6 +23,7 @@ class $FoosTable extends Foos with TableInfo<$FoosTable, Foo> {
|
|||
String get aliasedName => _alias ?? 'foos';
|
||||
@override
|
||||
String get actualTableName => 'foos';
|
||||
static String get actualTableNameStatic => 'foos';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Foo> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -160,6 +161,7 @@ class $BarsTable extends Bars with TableInfo<$BarsTable, Bar> {
|
|||
String get aliasedName => _alias ?? 'bars';
|
||||
@override
|
||||
String get actualTableName => 'bars';
|
||||
static String get actualTableNameStatic => 'bars';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Bar> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -30,6 +30,7 @@ class $TestTableTable extends TestTable
|
|||
String get aliasedName => _alias ?? 'test_table';
|
||||
@override
|
||||
String get actualTableName => 'test_table';
|
||||
static String get actualTableNameStatic => 'test_table';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TestTableData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
Loading…
Reference in New Issue