mirror of
https://github.com/ent/ent.git
synced 2026-05-05 00:50:54 +03:00
Reviewed By: alexsn Differential Revision: D16711184 fbshipit-source-id: 632b02c5c77c6289b242263647d45d9f28752e3f
67 lines
2.5 KiB
Go
67 lines
2.5 KiB
Go
package schema
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"fbc/ent/dialect"
|
|
"fbc/ent/dialect/sql"
|
|
)
|
|
|
|
// SQLite is an SQLite migration driver.
|
|
type SQLite struct {
|
|
dialect.Driver
|
|
}
|
|
|
|
// init makes sure that foreign_keys support is enabled.
|
|
func (d *SQLite) init(ctx context.Context, tx dialect.Tx) error {
|
|
on, err := exist(ctx, tx, "PRAGMA foreign_keys")
|
|
if err != nil {
|
|
return fmt.Errorf("sqlite: check foreign_keys pragma: %v", err)
|
|
}
|
|
if !on {
|
|
// foreign_keys pragma is off, either enable it by execute "PRAGMA foreign_keys=ON"
|
|
// or add the following parameter in the connection string "_fk=1".
|
|
return fmt.Errorf("sqlite: foreign_keys pragma is off: missing %q is the connection string", "_fk=1")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *SQLite) tableExist(ctx context.Context, tx dialect.Tx, name string) (bool, error) {
|
|
query, args := sql.Select().Count().
|
|
From(sql.Table("sqlite_master")).
|
|
Where(sql.EQ("type", "table").And().EQ("name", name)).
|
|
Query()
|
|
return exist(ctx, tx, query, args...)
|
|
}
|
|
|
|
// setRange sets the start value of table PK.
|
|
// SQLite tracks the AUTOINCREMENT in the "sqlite_sequence" table that is created and initialized automatically
|
|
// whenever a table that contains an AUTOINCREMENT column is created. However, it populates to it a rows (for tables)
|
|
// only after the first insertion. Therefore, we check. If a record (for the given table) already exists in the "sqlite_sequence"
|
|
// table, we updated it. Otherwise, we insert a new value.
|
|
func (d *SQLite) setRange(ctx context.Context, tx dialect.Tx, name string, value int) error {
|
|
query, args := sql.Select().Count().
|
|
From(sql.Table("sqlite_sequence")).
|
|
Where(sql.EQ("name", name)).
|
|
Query()
|
|
exists, err := exist(ctx, tx, query, args...)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case exists:
|
|
query, args = sql.Update("sqlite_sequence").Set("seq", value).Where(sql.EQ("name", name)).Query()
|
|
default: // !exists
|
|
query, args = sql.Insert("sqlite_sequence").Columns("name", "seq").Values(name, value).Query()
|
|
}
|
|
return tx.Exec(ctx, query, args, new(sql.Result))
|
|
}
|
|
|
|
func (*SQLite) cType(c *Column) string { return c.SQLiteType() }
|
|
func (*SQLite) tBuilder(t *Table) *sql.TableBuilder { return t.SQLite() }
|
|
func (*SQLite) cBuilder(c *Column) *sql.ColumnBuilder { return c.SQLite() }
|
|
|
|
// fkExist returns always tru to disable foreign-keys creation after the table was created.
|
|
func (d *SQLite) fkExist(context.Context, dialect.Tx, string) (bool, error) { return true, nil }
|
|
func (d *SQLite) table(context.Context, dialect.Tx, string) (*Table, error) { return nil, nil }
|