Files
astuto/db/migrate/20190822140423_create_boards.rb
2019-08-22 17:09:13 +02:00

11 lines
180 B
Ruby

class CreateBoards < ActiveRecord::Migration[6.0]
def change
create_table :boards do |t|
t.string :name
t.text :description
t.timestamps
end
end
end