mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +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
|