mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
11 lines
180 B
Ruby
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
|