blob: ce27d4ee8b4a25fad8223a3e5160c228d0485a8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# This migration comes from ninoxe_engine (originally 20150115153453)
class CreateFootnotes < ActiveRecord::Migration
def change
create_table :footnotes do |t|
t.integer "line_id", :limit => 8
t.string :code
t.string :label
t.timestamps
end
end
end
|