mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
16 lines
242 B
Ruby
16 lines
242 B
Ruby
class CreatePages < ActiveRecord::Migration[5.1]
|
|
def self.up
|
|
create_table :pages do |t|
|
|
t.string :name
|
|
t.string :title
|
|
t.text :content
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :pages
|
|
end
|
|
end
|