sideplace_app/db/migrate/20150628223436_create_annonce_nauts.rb

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