mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
167 lines
5.4 KiB
Go
167 lines
5.4 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package migrate
|
|
|
|
import (
|
|
"entgo.io/ent/dialect/sql/schema"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
var (
|
|
// FriendshipsColumns holds the columns for the "friendships" table.
|
|
FriendshipsColumns = []*schema.Column{
|
|
{Name: "id", Type: field.TypeInt, Increment: true},
|
|
{Name: "weight", Type: field.TypeInt, Default: 1},
|
|
{Name: "created_at", Type: field.TypeTime},
|
|
{Name: "user_id", Type: field.TypeInt},
|
|
{Name: "friend_id", Type: field.TypeInt},
|
|
}
|
|
// FriendshipsTable holds the schema information for the "friendships" table.
|
|
FriendshipsTable = &schema.Table{
|
|
Name: "friendships",
|
|
Columns: FriendshipsColumns,
|
|
PrimaryKey: []*schema.Column{FriendshipsColumns[0]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "friendships_users_user",
|
|
Columns: []*schema.Column{FriendshipsColumns[3]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.NoAction,
|
|
},
|
|
{
|
|
Symbol: "friendships_users_friend",
|
|
Columns: []*schema.Column{FriendshipsColumns[4]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.NoAction,
|
|
},
|
|
},
|
|
Indexes: []*schema.Index{
|
|
{
|
|
Name: "friendship_created_at",
|
|
Unique: false,
|
|
Columns: []*schema.Column{FriendshipsColumns[2]},
|
|
},
|
|
{
|
|
Name: "friendship_user_id_friend_id",
|
|
Unique: true,
|
|
Columns: []*schema.Column{FriendshipsColumns[3], FriendshipsColumns[4]},
|
|
},
|
|
},
|
|
}
|
|
// GroupsColumns holds the columns for the "groups" table.
|
|
GroupsColumns = []*schema.Column{
|
|
{Name: "id", Type: field.TypeInt, Increment: true},
|
|
{Name: "name", Type: field.TypeString, Default: "unknown"},
|
|
}
|
|
// GroupsTable holds the schema information for the "groups" table.
|
|
GroupsTable = &schema.Table{
|
|
Name: "groups",
|
|
Columns: GroupsColumns,
|
|
PrimaryKey: []*schema.Column{GroupsColumns[0]},
|
|
}
|
|
// PetsColumns holds the columns for the "pets" table.
|
|
PetsColumns = []*schema.Column{
|
|
{Name: "id", Type: field.TypeInt, Increment: true},
|
|
{Name: "name", Type: field.TypeString, Default: "unknown"},
|
|
{Name: "owner_id", Type: field.TypeInt, Nullable: true},
|
|
}
|
|
// PetsTable holds the schema information for the "pets" table.
|
|
PetsTable = &schema.Table{
|
|
Name: "pets",
|
|
Columns: PetsColumns,
|
|
PrimaryKey: []*schema.Column{PetsColumns[0]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "pets_users_pets",
|
|
Columns: []*schema.Column{PetsColumns[2]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.SetNull,
|
|
},
|
|
},
|
|
}
|
|
// UsersColumns holds the columns for the "users" table.
|
|
UsersColumns = []*schema.Column{
|
|
{Name: "id", Type: field.TypeInt, Increment: true},
|
|
{Name: "name", Type: field.TypeString, Default: "unknown"},
|
|
}
|
|
// UsersTable holds the schema information for the "users" table.
|
|
UsersTable = &schema.Table{
|
|
Name: "users",
|
|
Columns: UsersColumns,
|
|
PrimaryKey: []*schema.Column{UsersColumns[0]},
|
|
}
|
|
// GroupUsersColumns holds the columns for the "group_users" table.
|
|
GroupUsersColumns = []*schema.Column{
|
|
{Name: "group_id", Type: field.TypeInt},
|
|
{Name: "user_id", Type: field.TypeInt},
|
|
}
|
|
// GroupUsersTable holds the schema information for the "group_users" table.
|
|
GroupUsersTable = &schema.Table{
|
|
Name: "group_users",
|
|
Columns: GroupUsersColumns,
|
|
PrimaryKey: []*schema.Column{GroupUsersColumns[0], GroupUsersColumns[1]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "group_users_group_id",
|
|
Columns: []*schema.Column{GroupUsersColumns[0]},
|
|
RefColumns: []*schema.Column{GroupsColumns[0]},
|
|
OnDelete: schema.Cascade,
|
|
},
|
|
{
|
|
Symbol: "group_users_user_id",
|
|
Columns: []*schema.Column{GroupUsersColumns[1]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.Cascade,
|
|
},
|
|
},
|
|
}
|
|
// UserFollowingColumns holds the columns for the "user_following" table.
|
|
UserFollowingColumns = []*schema.Column{
|
|
{Name: "user_id", Type: field.TypeInt},
|
|
{Name: "follower_id", Type: field.TypeInt},
|
|
}
|
|
// UserFollowingTable holds the schema information for the "user_following" table.
|
|
UserFollowingTable = &schema.Table{
|
|
Name: "user_following",
|
|
Columns: UserFollowingColumns,
|
|
PrimaryKey: []*schema.Column{UserFollowingColumns[0], UserFollowingColumns[1]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "user_following_user_id",
|
|
Columns: []*schema.Column{UserFollowingColumns[0]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.Cascade,
|
|
},
|
|
{
|
|
Symbol: "user_following_follower_id",
|
|
Columns: []*schema.Column{UserFollowingColumns[1]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.Cascade,
|
|
},
|
|
},
|
|
}
|
|
// Tables holds all the tables in the schema.
|
|
Tables = []*schema.Table{
|
|
FriendshipsTable,
|
|
GroupsTable,
|
|
PetsTable,
|
|
UsersTable,
|
|
GroupUsersTable,
|
|
UserFollowingTable,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
FriendshipsTable.ForeignKeys[0].RefTable = UsersTable
|
|
FriendshipsTable.ForeignKeys[1].RefTable = UsersTable
|
|
PetsTable.ForeignKeys[0].RefTable = UsersTable
|
|
GroupUsersTable.ForeignKeys[0].RefTable = GroupsTable
|
|
GroupUsersTable.ForeignKeys[1].RefTable = UsersTable
|
|
UserFollowingTable.ForeignKeys[0].RefTable = UsersTable
|
|
UserFollowingTable.ForeignKeys[1].RefTable = UsersTable
|
|
}
|