12 lines
232 B
Ruby
12 lines
232 B
Ruby
class CreateInstances < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :instances do |t|
|
|
t.string :public_id
|
|
t.string :name
|
|
t.string :password
|
|
t.string :zone
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|