migrate

package
v0.0.0-...-40a75d2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 25, 2021 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// WithGlobalUniqueID sets the universal ids options to the migration.
	// If this option is enabled, ent migration will allocate a 1<<32 range
	// for the ids of each entity (table).
	// Note that this option cannot be applied on tables that already exist.
	WithGlobalUniqueID = schema.WithGlobalUniqueID
	// WithDropColumn sets the drop column option to the migration.
	// If this option is enabled, ent migration will drop old columns
	// that were used for both fields and edges. This defaults to false.
	WithDropColumn = schema.WithDropColumn
	// WithDropIndex sets the drop index option to the migration.
	// If this option is enabled, ent migration will drop old indexes
	// that were defined in the schema. This defaults to false.
	// Note that unique constraints are defined using `UNIQUE INDEX`,
	// and therefore, it's recommended to enable this option to get more
	// flexibility in the schema changes.
	WithDropIndex = schema.WithDropIndex
	// WithFixture sets the foreign-key renaming option to the migration when upgrading
	// ent from v0.1.0 (issue-#285). Defaults to false.
	WithFixture = schema.WithFixture
	// WithForeignKeys enables creating foreign-key in schema DDL. This defaults to true.
	WithForeignKeys = schema.WithForeignKeys
)
View Source
var (
	// EventsColumns holds the columns for the "events" table.
	EventsColumns = []*schema.Column{
		{Name: "id", Type: field.TypeInt, Increment: true},
		{Name: "message", Type: field.TypeString, SchemaType: map[string]string{"mysql": "longtext"}},
		{Name: "created_at", Type: field.TypeTime},
	}
	// EventsTable holds the schema information for the "events" table.
	EventsTable = &schema.Table{
		Name:        "events",
		Columns:     EventsColumns,
		PrimaryKey:  []*schema.Column{EventsColumns[0]},
		ForeignKeys: []*schema.ForeignKey{},
	}
	// ServersColumns holds the columns for the "servers" table.
	ServersColumns = []*schema.Column{
		{Name: "id", Type: field.TypeInt, Increment: true},
		{Name: "name", Type: field.TypeString},
		{Name: "template", Type: field.TypeString, SchemaType: map[string]string{"mysql": "longtext"}},
		{Name: "variables", Type: field.TypeJSON},
		{Name: "ip", Type: field.TypeString},
		{Name: "description", Type: field.TypeString},
		{Name: "cpu", Type: field.TypeInt},
		{Name: "memory", Type: field.TypeInt},
		{Name: "nvidia_gpu", Type: field.TypeInt},
		{Name: "created_at", Type: field.TypeTime},
		{Name: "deleted_at", Type: field.TypeTime, Nullable: true},
	}
	// ServersTable holds the schema information for the "servers" table.
	ServersTable = &schema.Table{
		Name:        "servers",
		Columns:     ServersColumns,
		PrimaryKey:  []*schema.Column{ServersColumns[0]},
		ForeignKeys: []*schema.ForeignKey{},
	}
	// TemplatesColumns holds the columns for the "templates" table.
	TemplatesColumns = []*schema.Column{
		{Name: "id", Type: field.TypeInt, Increment: true},
		{Name: "name", Type: field.TypeString, Unique: true},
		{Name: "description", Type: field.TypeString, Nullable: true},
		{Name: "template", Type: field.TypeString, SchemaType: map[string]string{"mysql": "longtext"}},
		{Name: "variables", Type: field.TypeJSON},
		{Name: "created_at", Type: field.TypeTime},
		{Name: "deleted_at", Type: field.TypeTime, Nullable: true},
	}
	// TemplatesTable holds the schema information for the "templates" table.
	TemplatesTable = &schema.Table{
		Name:        "templates",
		Columns:     TemplatesColumns,
		PrimaryKey:  []*schema.Column{TemplatesColumns[0]},
		ForeignKeys: []*schema.ForeignKey{},
	}
	// UsersColumns holds the columns for the "users" table.
	UsersColumns = []*schema.Column{
		{Name: "id", Type: field.TypeInt, Increment: true},
		{Name: "user_id", Type: field.TypeString, Unique: true},
		{Name: "user_pw", Type: field.TypeString},
		{Name: "quota_instance", Type: field.TypeInt},
		{Name: "quota_cpu", Type: field.TypeInt},
		{Name: "quota_memory", Type: field.TypeInt},
		{Name: "quota_nvidia_gpu", Type: field.TypeInt},
		{Name: "quota_storage", Type: field.TypeInt},
		{Name: "created_at", Type: field.TypeTime},
		{Name: "deleted_at", Type: field.TypeTime, 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{},
	}
	// EventUserColumns holds the columns for the "event_user" table.
	EventUserColumns = []*schema.Column{
		{Name: "event_id", Type: field.TypeInt},
		{Name: "user_id", Type: field.TypeInt},
	}
	// EventUserTable holds the schema information for the "event_user" table.
	EventUserTable = &schema.Table{
		Name:       "event_user",
		Columns:    EventUserColumns,
		PrimaryKey: []*schema.Column{EventUserColumns[0], EventUserColumns[1]},
		ForeignKeys: []*schema.ForeignKey{
			{
				Symbol:  "event_user_event_id",
				Columns: []*schema.Column{EventUserColumns[0]},

				RefColumns: []*schema.Column{EventsColumns[0]},
				OnDelete:   schema.Cascade,
			},
			{
				Symbol:  "event_user_user_id",
				Columns: []*schema.Column{EventUserColumns[1]},

				RefColumns: []*schema.Column{UsersColumns[0]},
				OnDelete:   schema.Cascade,
			},
		},
	}
	// EventServerColumns holds the columns for the "event_server" table.
	EventServerColumns = []*schema.Column{
		{Name: "event_id", Type: field.TypeInt},
		{Name: "server_id", Type: field.TypeInt},
	}
	// EventServerTable holds the schema information for the "event_server" table.
	EventServerTable = &schema.Table{
		Name:       "event_server",
		Columns:    EventServerColumns,
		PrimaryKey: []*schema.Column{EventServerColumns[0], EventServerColumns[1]},
		ForeignKeys: []*schema.ForeignKey{
			{
				Symbol:  "event_server_event_id",
				Columns: []*schema.Column{EventServerColumns[0]},

				RefColumns: []*schema.Column{EventsColumns[0]},
				OnDelete:   schema.Cascade,
			},
			{
				Symbol:  "event_server_server_id",
				Columns: []*schema.Column{EventServerColumns[1]},

				RefColumns: []*schema.Column{ServersColumns[0]},
				OnDelete:   schema.Cascade,
			},
		},
	}
	// ServerTemplateFromColumns holds the columns for the "server_template_from" table.
	ServerTemplateFromColumns = []*schema.Column{
		{Name: "server_id", Type: field.TypeInt},
		{Name: "template_id", Type: field.TypeInt},
	}
	// ServerTemplateFromTable holds the schema information for the "server_template_from" table.
	ServerTemplateFromTable = &schema.Table{
		Name:       "server_template_from",
		Columns:    ServerTemplateFromColumns,
		PrimaryKey: []*schema.Column{ServerTemplateFromColumns[0], ServerTemplateFromColumns[1]},
		ForeignKeys: []*schema.ForeignKey{
			{
				Symbol:  "server_template_from_server_id",
				Columns: []*schema.Column{ServerTemplateFromColumns[0]},

				RefColumns: []*schema.Column{ServersColumns[0]},
				OnDelete:   schema.Cascade,
			},
			{
				Symbol:  "server_template_from_template_id",
				Columns: []*schema.Column{ServerTemplateFromColumns[1]},

				RefColumns: []*schema.Column{TemplatesColumns[0]},
				OnDelete:   schema.Cascade,
			},
		},
	}
	// UserServersColumns holds the columns for the "user_servers" table.
	UserServersColumns = []*schema.Column{
		{Name: "user_id", Type: field.TypeInt},
		{Name: "server_id", Type: field.TypeInt},
	}
	// UserServersTable holds the schema information for the "user_servers" table.
	UserServersTable = &schema.Table{
		Name:       "user_servers",
		Columns:    UserServersColumns,
		PrimaryKey: []*schema.Column{UserServersColumns[0], UserServersColumns[1]},
		ForeignKeys: []*schema.ForeignKey{
			{
				Symbol:  "user_servers_user_id",
				Columns: []*schema.Column{UserServersColumns[0]},

				RefColumns: []*schema.Column{UsersColumns[0]},
				OnDelete:   schema.Cascade,
			},
			{
				Symbol:  "user_servers_server_id",
				Columns: []*schema.Column{UserServersColumns[1]},

				RefColumns: []*schema.Column{ServersColumns[0]},
				OnDelete:   schema.Cascade,
			},
		},
	}
	// UserTemplatesColumns holds the columns for the "user_templates" table.
	UserTemplatesColumns = []*schema.Column{
		{Name: "user_id", Type: field.TypeInt},
		{Name: "template_id", Type: field.TypeInt},
	}
	// UserTemplatesTable holds the schema information for the "user_templates" table.
	UserTemplatesTable = &schema.Table{
		Name:       "user_templates",
		Columns:    UserTemplatesColumns,
		PrimaryKey: []*schema.Column{UserTemplatesColumns[0], UserTemplatesColumns[1]},
		ForeignKeys: []*schema.ForeignKey{
			{
				Symbol:  "user_templates_user_id",
				Columns: []*schema.Column{UserTemplatesColumns[0]},

				RefColumns: []*schema.Column{UsersColumns[0]},
				OnDelete:   schema.Cascade,
			},
			{
				Symbol:  "user_templates_template_id",
				Columns: []*schema.Column{UserTemplatesColumns[1]},

				RefColumns: []*schema.Column{TemplatesColumns[0]},
				OnDelete:   schema.Cascade,
			},
		},
	}
	// Tables holds all the tables in the schema.
	Tables = []*schema.Table{
		EventsTable,
		ServersTable,
		TemplatesTable,
		UsersTable,
		EventUserTable,
		EventServerTable,
		ServerTemplateFromTable,
		UserServersTable,
		UserTemplatesTable,
	}
)

Functions

This section is empty.

Types

type Schema

type Schema struct {
	// contains filtered or unexported fields
}

Schema is the API for creating, migrating and dropping a schema.

func NewSchema

func NewSchema(drv dialect.Driver) *Schema

NewSchema creates a new schema client.

func (*Schema) Create

func (s *Schema) Create(ctx context.Context, opts ...schema.MigrateOption) error

Create creates all schema resources.

func (*Schema) WriteTo

func (s *Schema) WriteTo(ctx context.Context, w io.Writer, opts ...schema.MigrateOption) error

WriteTo writes the schema changes to w instead of running them against the database.

if err := client.Schema.WriteTo(context.Background(), os.Stdout); err != nil {
	log.Fatal(err)
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL