about summary refs log tree commit diff stats
path: root/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20180702220722_create_streams.rb11
-rw-r--r--db/migrate/20180702221133_create_updates.rb10
2 files changed, 21 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 @@
1class 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
11end
diff --git a/db/migrate/20180702221133_create_updates.rb b/db/migrate/20180702221133_create_updates.rb new file mode 100644 index 0000000..05cc35a --- /dev/null +++ b/db/migrate/20180702221133_create_updates.rb
@@ -0,0 +1,10 @@
1class CreateUpdates < ActiveRecord::Migration[5.1]
2 def change
3 create_table :updates do |t|
4 t.references :stream, foreign_key: true
5 t.text :body
6
7 t.timestamps
8 end
9 end
10end