diff options
Diffstat (limited to 'db/migrate/20180702220722_create_streams.rb')
-rw-r--r-- | db/migrate/20180702220722_create_streams.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20180702220722_create_streams.rb b/db/migrate/20180702220722_create_streams.rb new file mode 100644 index 0000000..bb8255e --- /dev/null +++ b/db/migrate/20180702220722_create_streams.rb | |||
@@ -0,0 +1,11 @@ | |||
1 | class CreateStreams < ActiveRecord::Migration[5.1] | ||
2 | def change | ||
3 | create_table :streams do |t| | ||
4 | t.string :title | ||
5 | t.text :body | ||
6 | t.string :slug | ||
7 | |||
8 | t.timestamps | ||
9 | end | ||
10 | end | ||
11 | end | ||