text 将列添加到现有表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 将列添加到现有表相关的知识,希望对你有一定的参考价值。

// Suppose we have a Post model with body:integer and title:string columns. Generate a migration to add a user_id column to the posts table.

$ rails g migration AddUserIdToPosts

// Update the migration file, so the $ rake db:migrate command will add the user_id column to the posts table.

class AddUserIdToPosts < ActiveRecord::Migration
  def change
    add_column :posts, :user_id, :integer
  end
end

以上是关于text 将列添加到现有表的主要内容,如果未能解决你的问题,请参考以下文章

MariaDB 将列动态添加到现有表

将列添加到现有 SQL Server 表 - 含义

将列 ID 添加到现有表

php 将列添加到现有表迁移

将列动态添加到现有 BigQuery 表

markdown 使用迁移将列添加到现有表