blob: f84dbbfbfe60c8e30af89a52c6aab9c6e9211773 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateEnvironments < ActiveRecord::Migration
def change
create_table :environments do |t|
t.string :name
t.references :service, index: true
t.string :api_key
t.timestamps
end
end
end
|