Initial implementation

This commit is contained in:
Aart van Halteren
2013-06-26 09:00:08 +02:00
commit e6fc705e6a
11 changed files with 157 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class CreatesPages < ActiveRecord::Migration
def change
create_table :pages do |t|
t.text :content
t.boolean :published, default: false
end
end
end