scinote-web/db/migrate/20170116143350_add_name_to_tables.rb
2017-01-19 16:42:14 +01:00

6 lines
136 B
Ruby

class AddNameToTables < ActiveRecord::Migration
def change
add_column :tables, :name, :string, default: '', index: true
end
end