15 lines
236 B
Ruby
Executable file
15 lines
236 B
Ruby
Executable file
class CreatePrefs < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :prefs do |t|
|
|
t.string :theme
|
|
t.string :locale
|
|
t.references :user
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :prefs
|
|
end
|
|
end
|