Skip to content

Commit

Permalink
Create migration_requests table to track beta requests
Browse files Browse the repository at this point in the history
  • Loading branch information
clekstro committed Dec 3, 2018
1 parent f45addc commit 2c5c37d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions db/main/migrate/20181130144914_create_migration_requests.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class CreateMigrationRequests < ActiveRecord::Migration[4.2]
def change
create_table :migration_requests do |t|
t.string :owner_name, null: false
t.string :owner_type, null: false
t.date :accepted_at
t.timestamps
end
end
end

0 comments on commit 2c5c37d

Please sign in to comment.