about summary refs log tree commit diff stats
path: root/db/migrate/20170625004938_create_entries.rb
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-06-25 00:00:28 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-06-25 00:00:28 -0400
commitad80c40944743515a45d70014e8d5ffb88cd74fc (patch)
tree0e97b3d46f3ed3594a1e4074e4a5a06deefcd76d /db/migrate/20170625004938_create_entries.rb
parent5581530930129d7854ed5d99d058939ad9c790c2 (diff)
downloadthoughts-ad80c40944743515a45d70014e8d5ffb88cd74fc.tar.gz
thoughts-ad80c40944743515a45d70014e8d5ffb88cd74fc.tar.bz2
thoughts-ad80c40944743515a45d70014e8d5ffb88cd74fc.zip
Started designing index page
Diffstat (limited to 'db/migrate/20170625004938_create_entries.rb')
-rw-r--r--db/migrate/20170625004938_create_entries.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20170625004938_create_entries.rb b/db/migrate/20170625004938_create_entries.rb new file mode 100644 index 0000000..0fb85b2 --- /dev/null +++ b/db/migrate/20170625004938_create_entries.rb
@@ -0,0 +1,12 @@
1class CreateEntries < ActiveRecord::Migration[5.1]
2 def change
3 create_table :entries do |t|
4 t.string :title
5 t.text :body
6 t.string :slug, null: false
7 t.string :type, null: false
8
9 t.timestamps
10 end
11 end
12end