10 lines
158 B
Ruby
10 lines
158 B
Ruby
class CreateDomains < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :domains do |t|
|
|
t.string :domain
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|