mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
8 lines
142 B
Ruby
8 lines
142 B
Ruby
|
class CreateThemes < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :themes do |t|
|
||
|
t.string :name, null: false
|
||
|
end
|
||
|
end
|
||
|
end
|