Initial commit
This commit is contained in:
11
db/migrate/20200326115546_create_broadcasts.rb
Normal file
11
db/migrate/20200326115546_create_broadcasts.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class CreateBroadcasts < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
create_table :broadcasts do |t|
|
||||
t.references :project
|
||||
t.string :name
|
||||
t.integer :status, default: 0
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user