9 lines
174 B
Ruby
9 lines
174 B
Ruby
class CreateScope < ActiveRecord::Migration
|
|
def change
|
|
create_table :scopes do |t|
|
|
t.primary_key :name, :string
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|