mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
13 lines
240 B
Ruby
13 lines
240 B
Ruby
|
class CreateSpaces < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :spaces do |t|
|
||
|
t.string :name
|
||
|
t.integer :default_places
|
||
|
t.text :description
|
||
|
t.string :slug
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|