mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 11:47:41 +00:00
10 lines
197 B
Ruby
10 lines
197 B
Ruby
class CreateCompanies < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :companies do |t|
|
|
t.string :company_name
|
|
t.string :company_token
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|