10 lines
197 B
Ruby
10 lines
197 B
Ruby
class CreateAnnonceNauts < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_nauts do |t|
|
|
t.string :naut_type
|
|
t.date :year
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|