mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
45 lines
1.2 KiB
Go
45 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 (
|
|
"entgo.io/ent/dialect/sql/schema"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
var (
|
|
// FilesColumns holds the columns for the "files" table.
|
|
FilesColumns = []*schema.Column{
|
|
{Name: "id", Type: field.TypeInt, Increment: true},
|
|
{Name: "name", Type: field.TypeString},
|
|
{Name: "deleted", Type: field.TypeBool, Default: false},
|
|
{Name: "parent_id", Type: field.TypeInt, Nullable: true},
|
|
}
|
|
// FilesTable holds the schema information for the "files" table.
|
|
FilesTable = &schema.Table{
|
|
Name: "files",
|
|
Columns: FilesColumns,
|
|
PrimaryKey: []*schema.Column{FilesColumns[0]},
|
|
ForeignKeys: []*schema.ForeignKey{
|
|
{
|
|
Symbol: "files_files_children",
|
|
Columns: []*schema.Column{FilesColumns[3]},
|
|
RefColumns: []*schema.Column{FilesColumns[0]},
|
|
OnDelete: schema.SetNull,
|
|
},
|
|
},
|
|
}
|
|
// Tables holds all the tables in the schema.
|
|
Tables = []*schema.Table{
|
|
FilesTable,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
FilesTable.ForeignKeys[0].RefTable = FilesTable
|
|
}
|