mirror of https://github.com/AMT-Cheif/drift.git
chore: Re-run build runner
This commit is contained in:
parent
d001ad533f
commit
4041eec6d5
|
@ -39,10 +39,10 @@ class Todos extends i0.Table with i0.TableInfo<Todos, i1.Todo> {
|
|||
@override
|
||||
List<i0.GeneratedColumn> get $columns => [id, title, content, category];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'todos';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'todos';
|
||||
static String get actualTableNameStatic => 'todos';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'todos';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Todo> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -281,10 +281,10 @@ class Categories extends i0.Table with i0.TableInfo<Categories, i1.Category> {
|
|||
@override
|
||||
List<i0.GeneratedColumn> get $columns => [id, description];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'categories';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'categories';
|
||||
static String get actualTableNameStatic => 'categories';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'categories';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Category> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -26,10 +26,10 @@ class $TodoCategoriesTable extends TodoCategories
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, name];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'todo_categories';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'todo_categories';
|
||||
static String get actualTableNameStatic => 'todo_categories';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'todo_categories';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TodoCategory> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -226,10 +226,10 @@ class $TodoItemsTable extends TodoItems
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[id, title, content, categoryId, generatedText];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'todo_items';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'todo_items';
|
||||
static String get actualTableNameStatic => 'todo_items';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'todo_items';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TodoItem> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -18,10 +18,10 @@ class NoIds extends Table with TableInfo<NoIds, NoIdRow> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [payload];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'no_ids';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'no_ids';
|
||||
static String get actualTableNameStatic => 'no_ids';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'no_ids';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<NoIdRow> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -119,10 +119,10 @@ class WithDefaults extends Table with TableInfo<WithDefaults, WithDefault> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [a, b];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'with_defaults';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'with_defaults';
|
||||
static String get actualTableNameStatic => 'with_defaults';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'with_defaults';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<WithDefault> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -316,10 +316,10 @@ class WithConstraints extends Table
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [a, b, c];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'with_constraints';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'with_constraints';
|
||||
static String get actualTableNameStatic => 'with_constraints';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'with_constraints';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<WithConstraint> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -560,10 +560,10 @@ class ConfigTable extends Table with TableInfo<ConfigTable, Config> {
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[configKey, configValue, syncState, syncStateImplicit];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'config';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'config';
|
||||
static String get actualTableNameStatic => 'config';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'config';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Config> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -859,10 +859,10 @@ class Mytable extends Table with TableInfo<Mytable, MytableData> {
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[someid, sometext, isInserting, somedate];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'mytable';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'mytable';
|
||||
static String get actualTableNameStatic => 'mytable';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'mytable';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<MytableData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1122,10 +1122,10 @@ class Email extends Table
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [sender, title, body];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'email';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'email';
|
||||
static String get actualTableNameStatic => 'email';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'email';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<EMail> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1347,10 +1347,10 @@ class WeirdTable extends Table with TableInfo<WeirdTable, WeirdData> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [sqlClass, textColumn];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'Expression';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'Expression';
|
||||
static String get actualTableNameStatic => 'Expression';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'Expression';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<WeirdData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -47,10 +47,10 @@ class $CategoriesTable extends Categories
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[id, description, priority, descriptionInUpperCase];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'categories';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'categories';
|
||||
static String get actualTableNameStatic => 'categories';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'categories';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Category> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -319,10 +319,10 @@ class $TodosTableTable extends TodosTable
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[id, title, content, targetDate, category, status];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'todos';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'todos';
|
||||
static String get actualTableNameStatic => 'todos';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'todos';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TodoEntry> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -669,10 +669,10 @@ class $UsersTable extends Users with TableInfo<$UsersTable, User> {
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[id, name, isAwesome, profilePicture, creationTime];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'users';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -938,10 +938,10 @@ class $SharedTodosTable extends SharedTodos
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [todo, user];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'shared_todos';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'shared_todos';
|
||||
static String get actualTableNameStatic => 'shared_todos';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'shared_todos';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<SharedTodo> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1143,10 +1143,10 @@ class $TableWithoutPKTable extends TableWithoutPK
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[notReallyAnId, someFloat, webSafeInt, custom];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'table_without_p_k';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'table_without_p_k';
|
||||
static String get actualTableNameStatic => 'table_without_p_k';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'table_without_p_k';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<CustomRowClass> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -1325,10 +1325,10 @@ class $PureDefaultsTable extends PureDefaults
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [txt];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'pure_defaults';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'pure_defaults';
|
||||
static String get actualTableNameStatic => 'pure_defaults';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'pure_defaults';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<PureDefault> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -26,10 +26,10 @@ class $_SomeTableTable extends _SomeTable
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, name];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'some_table';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'some_table';
|
||||
static String get actualTableNameStatic => 'some_table';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'some_table';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<_SomeTableData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -42,10 +42,10 @@ class $UsersTable extends Users with TableInfo<$UsersTable, User> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, name, birthday, nextUser];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'users';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -293,10 +293,10 @@ class Groups extends Table with TableInfo<Groups, Group> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, title, deleted, owner];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'groups';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'groups';
|
||||
static String get actualTableNameStatic => 'groups';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'groups';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Group> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -544,10 +544,10 @@ class Notes extends Table
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [title, content, searchTerms];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'notes';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'notes';
|
||||
static String get actualTableNameStatic => 'notes';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'notes';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Note> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -30,10 +30,10 @@ class Posts extends i0.Table with i0.TableInfo<Posts, i1.Post> {
|
|||
@override
|
||||
List<i0.GeneratedColumn> get $columns => [id, author, content];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'posts';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'posts';
|
||||
static String get actualTableNameStatic => 'posts';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'posts';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Post> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -237,10 +237,10 @@ class Likes extends i0.Table with i0.TableInfo<Likes, i1.Like> {
|
|||
@override
|
||||
List<i0.GeneratedColumn> get $columns => [post, likedBy];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'likes';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'likes';
|
||||
static String get actualTableNameStatic => 'likes';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'likes';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Like> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -29,10 +29,10 @@ class SearchInPosts extends i0.Table
|
|||
@override
|
||||
List<i0.GeneratedColumn> get $columns => [author, content];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'search_in_posts';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'search_in_posts';
|
||||
static String get actualTableNameStatic => 'search_in_posts';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'search_in_posts';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(
|
||||
i0.Insertable<i1.SearchInPost> instance,
|
||||
|
|
|
@ -48,10 +48,10 @@ class Users extends i0.Table with i0.TableInfo<Users, i1.User> {
|
|||
List<i0.GeneratedColumn> get $columns =>
|
||||
[id, name, biography, preferences, profilePicture];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'users';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'users';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -339,10 +339,10 @@ class Follows extends i0.Table with i0.TableInfo<Follows, i1.Follow> {
|
|||
@override
|
||||
List<i0.GeneratedColumn> get $columns => [followed, follower];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'follows';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'follows';
|
||||
static String get actualTableNameStatic => 'follows';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'follows';
|
||||
@override
|
||||
i0.VerificationContext validateIntegrity(i0.Insertable<i1.Follow> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -23,10 +23,10 @@ class Entries extends Table with TableInfo<Entries, Entrie> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, value];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'entries';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'entries';
|
||||
static String get actualTableNameStatic => 'entries';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'entries';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Entrie> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -22,10 +22,10 @@ class Users extends Table with TableInfo<Users, User> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, name];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'users';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -22,10 +22,10 @@ class $KeyValuesTable extends KeyValues
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [key, value];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'key_values';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'key_values';
|
||||
static String get actualTableNameStatic => 'key_values';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'key_values';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<KeyValue> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -48,10 +48,10 @@ class $UsersTable extends Users with TableInfo<$UsersTable, User> {
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[id, name, birthDate, profilePicture, preferences];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'users';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'users';
|
||||
static String get actualTableNameStatic => 'users';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'users';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<User> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -348,10 +348,10 @@ class $FriendshipsTable extends Friendships
|
|||
List<GeneratedColumn> get $columns =>
|
||||
[firstUser, secondUser, reallyGoodFriends];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'friendships';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'friendships';
|
||||
static String get actualTableNameStatic => 'friendships';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'friendships';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Friendship> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -20,10 +20,10 @@ class $FoosTable extends Foos with TableInfo<$FoosTable, Foo> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'foos';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'foos';
|
||||
static String get actualTableNameStatic => 'foos';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'foos';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Foo> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
@ -158,10 +158,10 @@ class $BarsTable extends Bars with TableInfo<$BarsTable, Bar> {
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'bars';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'bars';
|
||||
static String get actualTableNameStatic => 'bars';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'bars';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<Bar> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
|
@ -27,10 +27,10 @@ class $TestTableTable extends TestTable
|
|||
@override
|
||||
List<GeneratedColumn> get $columns => [id, content];
|
||||
@override
|
||||
String get aliasedName => _alias ?? 'test_table';
|
||||
String get aliasedName => _alias ?? actualTableName;
|
||||
@override
|
||||
String get actualTableName => 'test_table';
|
||||
static String get actualTableNameStatic => 'test_table';
|
||||
String get actualTableName => $name;
|
||||
static const String $name = 'test_table';
|
||||
@override
|
||||
VerificationContext validateIntegrity(Insertable<TestTableData> instance,
|
||||
{bool isInserting = false}) {
|
||||
|
|
Loading…
Reference in New Issue