如何使用sql模式更改表?

wsewodh2  于 2021-06-17  发布在  Mysql
关注(0)|答案(0)|浏览(259)

我正在使用sqlx将mysql数据库连接到golang。我有一个sql模式 CREATE TABLE IF NOT EXISTS... 语句已定义。举个例子:

CREATE TABLE IF NOT EXISTS `users`
  (
     `id` INT(0) NOT NULL auto_increment,
     `language_code` VARCHAR(5) NOT NULL,
     `premium` BIT(0) DEFAULT 0,
     `status` VARCHAR(100) NOT NULL DEFAULT '',
     `user_id` INT(0) NOT NULL,
     PRIMARY KEY (id)
  );
...

下面是我如何连接到数据库并每次执行所有查询:

Database, err = sqlx.Connect(Config.Database.Type, Config.Database.DataSourceString) // Connect to the database

if err != nil { // If there's an error, handle it
    panic(err.Error())
}

defer Database.Close() // Close the database when the function finishes

schemaSQL, err := ioutil.ReadFile("schema.sql") // Read the configuration file (DealsFinderBot/config.yaml)

if err != nil { // If there's an error, handle it
    panic(err.Error())
}

for _, query := range strings.Split(string(schemaSQL), ";") { // Loop on the queries of the schema
    if strings.TrimSpace(query) != "" { // If the query is not empty
        Database.MustExec(query) // Execute the query
    }
}

每次添加新列或编辑某些参数(如 NOT NULL 或者 DEFAULT '' ). 我怎么能这么做?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题