mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
8 lines
218 B
Ruby
8 lines
218 B
Ruby
class CreateReleasedDomains < ActiveRecord::Migration
|
|
def change
|
|
create_table :released_domains do |t|
|
|
t.string :name, null: false
|
|
t.boolean :at_auction, default: false, null: false
|
|
end
|
|
end
|
|
end
|