wblog/db/migrate/20160420082629_create_label...

10 lines
154 B
Ruby

class CreateLabels < ActiveRecord::Migration[5.0]
def change
create_table :labels do |t|
t.string :name
t.timestamps
end
end
end