14 lines
256 B
Ruby
14 lines
256 B
Ruby
class CreateProjects < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :projects do |t|
|
|
t.string :name
|
|
t.string :email
|
|
t.string :shortname
|
|
t.date :offer_date
|
|
t.date :order_date
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|