mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
8 lines
223 B
Ruby
8 lines
223 B
Ruby
class CreateReleasedDomains < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :released_domains do |t|
|
|
t.string :name, null: false
|
|
t.boolean :at_auction, default: false, null: false
|
|
end
|
|
end
|
|
end
|