mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-06 03:46:39 +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
|