mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
64 lines
1.9 KiB
Go
64 lines
1.9 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 entc, DO NOT EDIT.
|
|
|
|
package migrate
|
|
|
|
import (
|
|
"entgo.io/ent/dialect/sql/schema"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
var (
|
|
// UsersColumns holds the columns for the "users" table.
|
|
UsersColumns = []*schema.Column{
|
|
{Name: "id", Type: field.TypeInt, Increment: true},
|
|
{Name: "age", Type: field.TypeInt},
|
|
{Name: "name", Type: field.TypeString},
|
|
}
|
|
// UsersTable holds the schema information for the "users" table.
|
|
UsersTable = &schema.Table{
|
|
Name: "users",
|
|
Columns: UsersColumns,
|
|
PrimaryKey: []*schema.Column{UsersColumns[0]},
|
|
ForeignKeys: []*schema.ForeignKey{},
|
|
}
|
|
// UserFriendsColumns holds the columns for the "user_friends" table.
|
|
UserFriendsColumns = []*schema.Column{
|
|
{Name: "user_id", Type: field.TypeInt},
|
|
{Name: "friend_id", Type: field.TypeInt},
|
|
}
|
|
// UserFriendsTable holds the schema information for the "user_friends" table.
|
|
UserFriendsTable = &schema.Table{
|
|
Name: "user_friends",
|
|
Columns: UserFriendsColumns,
|
|
PrimaryKey: []*schema.Column{UserFriendsColumns[0], UserFriendsColumns[1]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "user_friends_user_id",
|
|
Columns: []*schema.Column{UserFriendsColumns[0]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.Cascade,
|
|
},
|
|
{
|
|
Symbol: "user_friends_friend_id",
|
|
Columns: []*schema.Column{UserFriendsColumns[1]},
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.Cascade,
|
|
},
|
|
},
|
|
}
|
|
// Tables holds all the tables in the schema.
|
|
Tables = []*schema.Table{
|
|
UsersTable,
|
|
UserFriendsTable,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
UserFriendsTable.ForeignKeys[0].RefTable = UsersTable
|
|
UserFriendsTable.ForeignKeys[1].RefTable = UsersTable
|
|
}
|