mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
46 lines
1.2 KiB
Go
46 lines
1.2 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 (
|
|
"github.com/facebook/ent/dialect/sql/schema"
|
|
"github.com/facebook/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},
|
|
{Name: "user_spouse", Type: field.TypeInt, Unique: true, Nullable: true},
|
|
}
|
|
// UsersTable holds the schema information for the "users" table.
|
|
UsersTable = &schema.Table{
|
|
Name: "users",
|
|
Columns: UsersColumns,
|
|
PrimaryKey: []*schema.Column{UsersColumns[0]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "users_users_spouse",
|
|
Columns: []*schema.Column{UsersColumns[3]},
|
|
|
|
RefColumns: []*schema.Column{UsersColumns[0]},
|
|
OnDelete: schema.SetNull,
|
|
},
|
|
},
|
|
}
|
|
// Tables holds all the tables in the schema.
|
|
Tables = []*schema.Table{
|
|
UsersTable,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
UsersTable.ForeignKeys[0].RefTable = UsersTable
|
|
}
|