mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
5 lines
141 B
Ruby
5 lines
141 B
Ruby
class AddNameToTables < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :tables, :name, :string, default: '', index: true
|
|
end
|
|
end
|